home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEFormElementGetValue.au3 < prev    next >
Text File  |  2007-09-08  |  578b  |  12 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the form example, set the value of a text
  3. ;                form element, retrieve and display the value from the element
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IE_Example ("form")
  8. $oForm = _IEFormGetObjByName ($oIE, "ExampleForm")
  9. $oText = _IEFormElementGetObjByName ($oForm, "textExample")
  10. $IEAu3Version = _IE_VersionInfo ()
  11. _IEFormElementSetValue ($oText, $IEAu3Version[5])
  12. MsgBox(0, "Form Element Value", _IEFormElementGetValue ($oText))